.full-hou-ser-hero {
  position: relative;
  width: 100%;
  min-height: 520px; /* desktop height */
  display: flex;
  align-items: center;
  background: url("img/service/service-3.jpeg") no-repeat center center;
  background-size: cover; /* image full hero cover chestundi */
  padding: 90px 0;
  height: 600px;
}

.full-hou-ser-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* text readability kosam overlay */
}

.full-hou-ser-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #ffffff;
}

.full-hou-ser-title-main {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color:white;

}

.full-hou-ser-hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: #e6e6e6;
}

/* Tablet */
@media (max-width: 991px) {
  .full-hou-ser-hero {
    min-height: 440px;
    padding: 70px 0;
  }

  .full-hou-ser-title-main {
    font-size: 34px;
  }

}

/* Mobile */
@media (max-width: 576px) {
  .full-hou-ser-hero {
    min-height: 330px;
    padding: 55px 0;
    background-position: center top;
  }
 .full-hou-ser-hero {
    background-position: center right;
  }
  .full-hou-ser-title-main {
    font-size: 26px;
  }

  .full-hou-ser-hero-text {
    font-size: 15px;
  }
}



/* yyyyyyyyyyyyyyyyyyyyyyyyyyyyy */












/* BASE / DESKTOP */
.full-hou-ser0-section {
  background: #f8fafc;
  padding : 20px 0px;
  margin : 0px;
}

.full-hou-ser0-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 15px;
}

/* HEADING */
.full-hou-ser0-heading {
  font-size: 34px;
  font-weight: 700;
  color: darkgreen;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* TEXT */
.full-hou-ser0-text {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 900px;
}

/* =========================
   LARGE DESKTOP (≥1200px)
========================= */
@media (max-width: 1200px) {

  .full-hou-ser0-section {
    padding: 30px 0;
  }
 
  .full-hou-ser0-heading {
    font-size: 36px;
  }

  .full-hou-ser0-text {
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================
   TABLET (≤ 991px)
========================= */
@media (max-width: 991px) {

  .full-hou-ser0-section {
    padding: 30px 0;
  }

  .full-hou-ser0-heading {
    font-size: 28px;
  }

  .full-hou-ser0-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

  .full-hou-ser0-section {
    padding: 30px 0;
    text-align: center;
  }

  .full-hou-ser0-heading {
    font-size: 24px;
  }

  .full-hou-ser0-text {
    font-size: 15px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
  }
}
/* =====================================================
   PROCESS SECTION houseeeeee hold ser
===================================================== */
/* ===============================
   PROCESS SECTION
================================ */
.full-cln-process {
  padding: 40px 0;
  background: #f8fafc;
}

.full-cln-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.full-cln-header {
  text-align: center;
  margin-bottom: 70px;
}

.full-cln-header h2 {
  font-size: 36px;
  font-weight: 700;
 color: darkgreen;
  line-height: 1.3;
}

/* TIMELINE */
.full-cln-timeline {
  position: relative;
}

.full-cln-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #b7dcdc,
    #b7dcdc 6px,
    transparent 6px,
    transparent 14px
  );
  transform: translateX(-50%);
}

/* ITEM */
.full-cln-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 70px;
  overflow-x: hidden;
}

/* STEP */
.full-cln-step {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #2b42a4;
}

/* CONTENT */
.full-cln-content {
  background: #F8FAFC;
  padding: 30px;
  border-radius: 16px;
}

.full-cln-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: darkgreen;
}

.full-cln-content p {
  font-size: 15px;
  color: #003B63;
  line-height: 1.7;
}

/* IMAGE – ENHANCED BORDER */
.full-cln-image img {
  width: 75%;
  border-radius: 18px;
  object-fit: cover;
  overflow-x:hidden;
  background: #ffffff;
  padding: 6px;
    border: 2px solid #2b292952;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin: 10px 0px 10px 0px;
}

.full-cln-image img:hover {
  transform: translateY(-4px);
    box-shadow: 0 20px 45px rgb(15 14 84 / 69%), 0 0 0 6px rgb(22 35 79 / 7%);
}

/* ALIGNMENTS */
.full-cln-content.left,
.full-cln-image.left {
  text-align: right;
}

.full-cln-content.right,
.full-cln-image.right {
  text-align: left;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .full-cln-timeline::before {
    left: 50px;
  }

  .full-cln-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .full-cln-step {
    grid-row: span 2;
  }

  .full-cln-content,
  .full-cln-image {
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .full-cln-header h2 {
    font-size: 26px;
  }

  .full-cln-content {
    padding: 22px;
  }
}

/* ===============================
   MOBILE IMAGE FIX (IMPORTANT)
================================ */
@media (max-width: 991px) {

  .full-cln-image img {
    width: 100%;          /* force visible */
    max-width: 320px;     /* control size */
    display: block;
    margin: 10px 0 0 0;
  }

  .full-cln-image {
    order: 2;             /* image after content */
  }

  .full-cln-content {
    order: 1;
  }
}


/* cleanningstandard============================================================================= */






/* =====================================================
 CLEANING STANDARDS
===================================================== */

.full-hous-ser2-section {
  position: relative;
  padding: 80px 0;
  background: url("img/service/about13.png") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* Fade Overlay */
.full-hous-ser2-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(248, 250, 252, 0.92),
    rgba(248, 250, 252, 0.75)
  );
  z-index: 1;
}

/* Content above overlay */
.full-hous-ser2-section > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .full-hous-ser2-section {
    padding: 50px 0;
    background-position: center top;
  }
}
.full-hous-ser2-section::before {
  background: linear-gradient(
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.4)
  );
}

/* Content above overlay */
.full-hous-ser2-section > * {
  position: relative;
  z-index: 2;
}



.full-hous-ser2-heading {
  font-size: 34px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.full-hous-ser2-text {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.8;
  color:rgb(209 209 209);
  
}

/* LIST */
.full-hous-ser2-list {
  max-width: 900px;
  padding-left: 0;
  margin-top: 25px;
  list-style: none;
}

.full-hous-ser2-list li {
  position: relative;
  background: #ffffffa1;
  padding: 18px 22px 18px 50px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: black;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.full-hous-ser2-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}
/* CHECK ICON */
.full-hous-ser2-list li::before {
    content: "✓";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 22px;
  height: 22px;
  background: #b91c1c;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* STRONG TEXT */
.full-hous-ser2-list li strong {
    color: #2d7615;
    font-weight: 700;
}

/* =========================
   TABLET (≤ 991px)
========================= */
@media (max-width: 991px) {

  .full-hous-ser2-section {
    padding: 60px 0;
  }

  .full-hous-ser2-heading {
    font-size: 28px;
  }

  .full-hous-ser2-text {
    font-size: 16px;
  }

  .full-hous-ser2-list li {
    font-size: 15px;
    padding: 16px 20px 16px 46px;
  }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

  .full-hous-ser2-section {
    padding: 50px 0;
    text-align: center;
  }

  .full-hous-ser2-heading {
    font-size: 24px;
  }

  .full-hous-ser2-text {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .full-hou-ser2-list {
    margin-top: 20px;
  }

  .full-hou-ser2-list li {
    text-align: left;
    font-size: 14.5px;
    padding: 16px 18px 16px 44px;
  }

  .full-hou-ser2-list li::before {
    left: 14px;
    top: 18px;
  }
}
  












/* benefits house========================================== */

/* =====================================================
   BENEFITS FOR YOUR PROPERTY
===================================================== */
/* =====================================================
   BENEFITS FOR YOUR PROPERTY
===================================================== */
/* =====================================================
   BENEFITS TIMELINE
===================================================== */

.full-hou-ser-benefit-section {
  padding: 40px 0;
  background: #F8FAFC;
}

.full-hou-ser-benefit-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
   color: darkgreen;
  margin-bottom: 60px;
}

/* TIMELINE */
.full-hou-ser-benefit-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* CENTER LINE */
.full-hou-ser-benefit-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #0ea5e9, #22c55e, #f59e0b, #ef4444);
  transform: translateX(-50%);
  border-radius: 10px;
}

/* ITEM */
.full-hou-ser-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.full-hou-ser-benefit-item.left {
  justify-content: flex-end;
}

.full-hou-ser-benefit-item.right {
  justify-content: flex-start;
}

/* TEXT */
.full-hou-ser-benefit-content {
  width: 42%;
  background: #f8fafc;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 15.5px;
  color: darkblue;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* NUMBER CIRCLE */
.full-hou-ser-benefit-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid darkblue;
  color: #0f2a44;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  z-index: 2;
}

/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 576px) {

    .full-hou-ser-benefit-timeline {
    padding-left: 20px;
    padding-right: 10px;
  }


  .full-hou-ser-benefit-timeline::before {
    left: 20px;
  }

  .full-hou-ser-benefit-item {
    flex-direction: row;
    justify-content: flex-start;
  }

  .full-hou-ser-benefit-content {
    width: calc(100% - 80px);
  }

  .full-hou-ser-benefit-circle {
    margin: 0 16px 0 0;
  }
}
/* CUSTOMIZATION */
















/* =====================================================
   SERVICE CUSTOMIZATION – RADIAL DESIGN
===================================================== */
/* =====================================================
   SERVICE CUSTOMIZATION
===================================================== */
.full-cust-section {
  position: relative;
  padding: 100px 0;
  background-image: url("img/service/service-29.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 🔥 key line */
}
.full-cust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(132 132 132 / 88%);
  z-index: 1;
}

/* keep content above overlay */
.full-cust-section > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .full-cust-section {
    background-attachment: scroll;
    padding: 70px 0;
  }
}

.full-cust-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.full-cust-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.full-cust-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: darkgreen;
  margin-bottom: 12px;
}

.full-cust-header p {
  font-size: 16px;
  color: #d4d8dd;
  line-height: 1.7;
}

/* =====================================================
   STEPS WRAPPER
===================================================== */
.full-cust-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

/* CONNECTING LINE */
.full-cust-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
background: linear-gradient(to right, #000000 0%, #5eff0b 100%);
  z-index: 1;
}

/* =====================================================
   CARD
===================================================== */
.full-cust-card {
  position: relative;
  background: #f8fafc;
  border-radius: 18px;
  padding: 70px 24px 30px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  flex: 1;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER */
.full-cust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* ICON */
.full-cust-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #007450;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px  rgb(83 166 87 / 41%);
}

/* CARD TEXT */
.full-cust-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.full-cust-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {

  .full-cust-steps {
    flex-direction: column;
  }

  .full-cust-steps::before {
    display: none;
  }

  .full-cust-card {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {

  .full-cust-header h2 {
    font-size: 26px;
  }

  .full-cust-header p {
    font-size: 15px;
  }

  .full-cust-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .full-cust-card h4 {
    font-size: 16px;
  }
}













/* cTA */



.full-sec-ser-cta {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #0ea5e9,
    #0284c7,
    #0369a1
  );
  color: #ffffff;
  overflow: hidden;
}

/* SUBTLE OVERLAY */
.full-sec-ser-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  z-index: 1;
}

/* CONTENT */
.full-sec-ser-cta .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
   padding-left: 15px;
  padding-right: 15px;
}

/* HEADING */
.full-sec-ser-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* TEXT */
.full-sec-ser-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #e0f2fe;
  margin-bottom: 34px;
}

/* BUTTONS */
.full-sec-ser-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  margin: 8px;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.full-sec-ser-cta .btn-light {
  color: #0369a1;
}

.full-sec-ser-cta .btn-light:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
}

/* OUTLINE BUTTON */
.full-sec-ser-cta .btn-outline-light {
  border-width: 2px;
}

.full-sec-ser-cta .btn-outline-light:hover {
  background: #ffffff;
  color: #0369a1;
  transform: translateY(-3px);
}

/* =====================================================
   TABLET (≤ 991px)
===================================================== */
@media (max-width: 991px) {

  .full-sec-ser-cta {
    padding: 70px 0;
  }

  .full-sec-ser-cta h2 {
    font-size: 32px;
  }

  .full-sec-ser-cta p {
    font-size: 16px;
  }
}

/* =====================================================
   MOBILE (≤ 576px)
===================================================== */
@media (max-width: 576px) {

  .full-sec-ser-cta {
    padding: 60px 0;
  }

  .full-sec-ser-cta h2 {
    font-size: 26px;
  }

  .full-sec-ser-cta p {
    font-size: 15px;
  }

  .full-sec-ser-cta .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
  }
}
/* =====================================================
   GLOBAL SCROLL ANIMATIONS
===================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
[data-animate="fade-left"] {
  transform: translateX(-50px);
}

[data-animate="fade-right"] {
  transform: translateX(50px);
}

[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate].is-visible[data-animate="zoom-in"] {
  transform: scale(1);
}


.full-cust-card:hover,
.full-hou-ser-benefit-content:hover {
  transform: translateY(-6px) scale(1.02);
}



/* Delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}